home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / smtpEditOverlay.js < prev    next >
Encoding:
JavaScript  |  2005-05-01  |  6.8 KB  |  179 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Alec Flett <alecf@netscape.com>
  24.  *   Henrik Gemal <mozilla@gemal.dk>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  28.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. // be real hacky with document.getElementById until document.controls works
  41. // with the new XUL widgets
  42.  
  43. var gSmtpUsername;
  44. var gSmtpDescription;
  45. var gSmtpUsernameLabel;
  46. var gSmtpHostname;
  47. var gSmtpPort;
  48. var gSmtpUseUsername;
  49. var gSmtpAuthMethod;
  50. var gSmtpTrySSL;
  51. var gSmtpPrefBranch;
  52. var gPrefBranch = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
  53. var gSmtpService = Components.classes["@mozilla.org/messengercompose/smtp;1"].getService(Components.interfaces.nsISmtpService);
  54. var gSavedUsername="";
  55. var gPort;
  56. var gDefaultPort;
  57.  
  58. function initSmtpSettings(server) {
  59.  
  60.     gSmtpUsername = document.getElementById("smtp.username");
  61.     gSmtpDescription = document.getElementById("smtp.description");
  62.     gSmtpUsernameLabel = document.getElementById("smtpusernamelabel");
  63.     gSmtpHostname = document.getElementById("smtp.hostname");
  64.     gSmtpPort = document.getElementById("smtp.port");
  65.     gSmtpUseUsername = document.getElementById("smtp.useUsername");
  66.     gSmtpAuthMethod = document.getElementById("smtp.authMethod");
  67.     gSmtpTrySSL = document.getElementById("smtp.trySSL");
  68.     gDefaultPort = document.getElementById("smtp.defaultPort");
  69.     gPort = document.getElementById("smtp.port");
  70.  
  71.     if (server) {
  72.         gSmtpHostname.value = server.hostname;
  73.         gSmtpDescription.value = server.description;
  74.         gSmtpPort.value = server.port ? server.port : "";
  75.         gSmtpUsername.value = server.username;
  76.         gSmtpAuthMethod.setAttribute("value", server.authMethod);
  77.         gSmtpTrySSL.value = (server.trySSL < 4) ? server.trySSL : 1;
  78.     } else {
  79.         gSmtpAuthMethod.setAttribute("value", "1");
  80.         gSmtpTrySSL.value = 1;
  81.     }
  82.  
  83.     gSmtpUseUsername.checked = (gSmtpAuthMethod.getAttribute("value") == "1");
  84.  
  85.     //dump("gSmtpAuthMethod = <" + gSmtpAuthMethod.localName + ">\n");
  86.     //dump("gSmtpAuthMethod.value = " + gSmtpAuthMethod.getAttribute("value") + "\n");
  87.  
  88.     onUseUsername(gSmtpUseUsername, false);
  89.     selectProtocol(1);
  90.     if (gSmtpService.defaultServer)
  91.       onLockPreference();
  92. }
  93.  
  94. // Disables xul elements that have associated preferences locked.
  95. function onLockPreference()
  96. {
  97.     var defaultSmtpServerKey = gPrefBranch.getCharPref("mail.smtp.defaultserver");
  98.     var finalPrefString = "mail.smtpserver." + defaultSmtpServerKey + "."; 
  99.  
  100.     var prefService = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService);
  101.  
  102.     var allPrefElements = {
  103.       hostname:     gSmtpHostname,
  104.       description:  gSmtpDescription,
  105.       port:         gSmtpPort,
  106.       use_username: gSmtpUseUsername,
  107.       try_ssl:      gSmtpTrySSL
  108.     };
  109.  
  110.     gSmtpPrefBranch = prefService.getBranch(finalPrefString);
  111.     disableIfLocked( allPrefElements );
  112.  
  113. // Does the work of disabling an element given the array which contains xul id/prefstring pairs.
  114. // Also saves the id/locked state in an array so that other areas of the code can avoid
  115. // stomping on the disabled state indiscriminately.
  116. function disableIfLocked( prefstrArray )
  117. {
  118.   for (var prefstring in prefstrArray)
  119.     if (gSmtpPrefBranch.prefIsLocked(prefstring))
  120.       prefstrArray[prefstring].disabled = true;
  121. }
  122.  
  123. function saveSmtpSettings(server)
  124. {
  125.  
  126.     if (gSmtpUseUsername.checked)
  127.         gSmtpAuthMethod.setAttribute("value", "1");
  128.     else
  129.         gSmtpAuthMethod.setAttribute("value", "0");
  130.  
  131.     //dump("Saving to " + server + "\n");
  132.     if (server) {
  133.         server.hostname = gSmtpHostname.value;
  134.         server.description = gSmtpDescription.value;
  135.         server.port = gSmtpPort.value;
  136.         server.authMethod = (gSmtpUseUsername.checked ? 1 : 0);
  137.         //dump("Saved authmethod = " + server.authMethod +
  138.         //     " but checked = " + gSmtpUseUsername.checked + "\n");
  139.         server.username = gSmtpUsername.value;
  140.         server.trySSL = gSmtpTrySSL.value;
  141.     }
  142. }
  143.  
  144. function onUseUsername(checkbox, dofocus)
  145. {
  146.     if (checkbox.checked) {
  147.         // not only do we enable the elements when the check box is checked,
  148.         // but we also make sure that it's not disabled (ie locked) as well.
  149.         if (!checkbox.disabled) {
  150.             gSmtpUsername.removeAttribute("disabled");
  151.             gSmtpUsernameLabel.removeAttribute("disabled");
  152.         }
  153.         if (dofocus)
  154.             gSmtpUsername.focus();
  155.         if (gSavedUsername && gSavedUsername != "")
  156.             gSmtpUsername.value = gSavedUsername;
  157.     } else {
  158.         gSavedUsername = gSmtpUsername.value;
  159.         gSmtpUsername.value = "";
  160.         gSmtpUsername.setAttribute("disabled", "true");
  161.         gSmtpUsernameLabel.setAttribute("disabled", "true");
  162.     }
  163. }
  164.  
  165. function selectProtocol(init) {
  166.   var prevDefaultPort = gDefaultPort.value;
  167.  
  168.   if (gSmtpTrySSL.value == 3) {
  169.     gDefaultPort.value = "465";
  170.     if(gPort.value == "" || (!init && gPort.value == "25" && prevDefaultPort != gDefaultPort.value))
  171.         gPort.value = gDefaultPort.value;
  172.   } else {
  173.     gDefaultPort.value = "25";
  174.     if(gPort.value == "" || (!init && gPort.value == "465" && prevDefaultPort != gDefaultPort.value))
  175.         gPort.value = gDefaultPort.value;
  176.   }
  177. }
  178.